crypto/tls.clientHandshakeStateTLS13.transcript (field)

30 uses

	crypto/tls (current package)
		handshake_client_tls13.go#L38: 	transcript    hash.Hash
		handshake_client_tls13.go#L66: 	hs.transcript = hs.suite.hash.New()
		handshake_client_tls13.go#L68: 	if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L102: 			hs.transcript = hs.echContext.innerTranscript
		handshake_client_tls13.go#L119: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L240: 	chHash := hs.transcript.Sum(nil)
		handshake_client_tls13.go#L241: 	hs.transcript.Reset()
		handshake_client_tls13.go#L242: 	hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
		handshake_client_tls13.go#L243: 	hs.transcript.Write(chHash)
		handshake_client_tls13.go#L244: 	if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
		handshake_client_tls13.go#L389: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
		handshake_client_tls13.go#L516: 	clientSecret := handshakeSecret.ClientHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L518: 	serverSecret := handshakeSecret.ServerHandshakeTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L548: 	msg, err := c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L630: 	msg, err := c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L639: 		msg, err = c.readHandshake(hs.transcript)
		handshake_client_tls13.go#L689: 	signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
		handshake_client_tls13.go#L696: 	if err := transcriptMsg(certVerify, hs.transcript); err != nil {
		handshake_client_tls13.go#L720: 	expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
		handshake_client_tls13.go#L726: 	if err := transcriptMsg(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L732: 	hs.trafficSecret = hs.masterSecret.ClientApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L733: 	serverSecret := hs.masterSecret.ServerApplicationTrafficSecret(hs.transcript)
		handshake_client_tls13.go#L747: 	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
		handshake_client_tls13.go#L760: 		if _, err := hs.c.writeHandshakeRecord(&certificateMsgTLS13{}, hs.transcript); err != nil {
		handshake_client_tls13.go#L782: 	if _, err := hs.c.writeHandshakeRecord(certMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L807: 	signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
		handshake_client_tls13.go#L819: 	if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
		handshake_client_tls13.go#L830: 		verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
		handshake_client_tls13.go#L833: 	if _, err := hs.c.writeHandshakeRecord(finished, hs.transcript); err != nil {
		handshake_client_tls13.go#L840: 		c.resumptionSecret = hs.masterSecret.ResumptionMasterSecret(hs.transcript)